home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-08-27 | 1.2 KB | 38 lines | [TEXT/CWIE] |
- // ===========================================================================
- // LFSSpecComparator.h © 1995, Éric Forget. All rights reserved.
- // ===========================================================================
- //
- // ************************************************************************
- // * *
- // * Before using this code you should read the "License Agreement" *
- // * document and agree with it. *
- // * *
- // ************************************************************************
- //
- // Instruction and usage notes are in the LFSSPecComparator.cp file.
- //
- // ---------------------------------------------------------------------------
-
-
- #pragma once
-
-
- #include <LComparator.h>
-
-
- // ---------------------------------------------------------------------------
- // • Classe LFSSpecComparator
- // ---------------------------------------------------------------------------
-
- class LFSSpecComparator: public LComparator {
-
- public:
-
- LFSSpecComparator();
- virtual ~LFSSpecComparator();
-
- virtual Int32 Compare(const void* inCompData1, const void* inCompData2) const;
-
- };
-
-